home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue39 / construc / TDM39.BPG < prev    next >
Encoding:
Borland Project Group  |  1998-10-06  |  920 b   |  31 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = visitlog.exe TrkTable.exe DbServer.exe \
  13.   VisitBob.dll
  14. #------------------------------------------------------------------------------
  15. default: $(PROJECTS)
  16. #------------------------------------------------------------------------------
  17.  
  18. visitlog.exe: visitlog.dpr
  19.   $(DCC)
  20.  
  21. TrkTable.exe: TrkTable.dpr
  22.   $(DCC)
  23.  
  24. DbServer.exe: DbServer.dpr
  25.   $(DCC)
  26.  
  27. VisitBob.dll: VisitBob.dpr
  28.   $(DCC)
  29.  
  30.  
  31.